/* ========================================
   STYLES DE BASE
   ======================================== */
/* Paragraphes globaux */
p {
    color: #fff;
    text-align: center;
    font-style: italic;
    font-weight: bold;
    font-size: 1.35em;
}

/* Alignement des hauteurs du header sur petits écrans */
@media screen and (max-width: 768px) {
    .header-content { padding: 20px 0; background-color: #303030; }
}
@media screen and (max-width: 480px) {
    .header-content { padding: 15px 0; background-color: #303030; }
}
@media screen and (max-width: 375px) {
    .header-content { padding: 10px 0; background-color: #303030; }
}

/* ========================================
   HEADER
   ======================================== */
.header-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}

.header-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('photo/com/fontete.jpg');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.header-content > * {
    position: relative;
    z-index: 1;
}

h1 {
    margin: 0px 0;
    color: #fff;
    text-align: center;
}

.logo-img {
    width: 200px;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
}

/* ========================================
   LAYOUT PRINCIPAL
   ======================================== */
.corps {
    background: #e5e0e0;
    flex: 1 1 auto;
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

body {
    background-color: #303030;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow-x: hidden; /* Evite les débordements horizontaux */
}

html {
    box-sizing: border-box;
    overflow-x: hidden; /* Empêche toute bande due au scroll horizontal */
}
*, *::before, *::after { box-sizing: inherit; }

/* Images et conteneurs sécurisés */
.header-content,
.corps,
.tableaux-container {
    max-width: 100%;
}
img { max-width: 100%; height: auto; }
/* ========================================
   SECTION C2 (Texte + Image Branham)
   ======================================== */
.tete {
    text-align: center;
    font-size: 1.5em;
    font-style: italic;
    color: #000000;  
    margin-top: 92px;     
}

.c2 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    max-width: 1100px;
    width: 100%;
    background: transparent;
}

.tete3 {
    flex: 1;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 650px; 
    margin-top: 62px;
    color: #000000;
}

/* Image de Branham */
.branham-img {
    flex: 1;
    width: 180px;
    height: auto;
    border-radius: 8px; 
    max-width: 260px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #b9b5b5;
    padding: 8px;
    margin-top: 80px !important;
    align-self: flex-start;
}

/* ========================================
   TABLEAUX - DISPOSITION EN GRILLE
   ======================================== */
/* Conteneur principal pour tous les tableaux */
.tableaux-container {
    background-color: #303030;
    width: 100%;
    padding: 30px 0;
    margin: 0;
}

/* Conteneur pour les titres de disques */
.disque-container {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    padding: 20px 10px;
    box-sizing: border-box;
}

/* Chaque colonne prend exactement 50% */
.disque-container > div {
    flex: 1;
    width: 50%;
    min-width: 0;
    background-color: #303030;
    padding: 10px;
    border-radius: 8px;
}

/* Titres des disques */
.disque-container p {
    margin: 10px 0;
    font-size: 1.2em;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

/* Conteneur de tableau */
.tableau {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 5px;
    width: 100%;
}

.tableau table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    font-size: 0.85em;
}

.tableau th, .tableau td {
    border: 1px solid #888;
    padding: 6px 8px;
    text-align: left;
    font-size: 0.95em;
}

.tableau th {
    background: #555;
    color: #fff;
    font-size: 1em;
    position: sticky;
    top: 0;
    z-index: 10;
}

.tableau td:first-child {
    text-align: center;
    width: 50px;
}

.tableau td:nth-child(2) {
    text-align: center;
    width: 90px;
}

.tableau tr:nth-child(even) {
    background: #f9f9f9;
}

.tableau tr:hover {
    background: #e8f4f8;
}

.tableau a {
    color: #0066cc;
    text-decoration: none;
}

.tableau a:hover {
    text-decoration: underline;
    color: #004499;
}

/* Responsive - Retour à 1 colonne sur petits écrans */
@media (max-width: 1200px) {
    .disque-container {
        grid-template-columns: 1fr;
    }
    
    .tableau table {
        font-size: 0.9em;
    }
}

/* ========================================
   MENU HAMBURGER
   ======================================== */
.menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
 
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 101;
    padding: 0;
    transition: background 0.2s;
    
}
.menu-toggle:hover {
    background: #d3b1b1;
}
.menu-toggle .bar {
    display: block;
    width: 26px;
    height: 4px;
    margin: 3px 0;
    background: #444;
    border-radius: 2px;
    transition: 0.3s;
    
}

/* ========================================
   MENU DÉROULANT
   ======================================== */
.menu-list {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #f1dada;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    position: absolute;
    top: 80px;
    left: 24px;
    min-width: 220px;
    z-index: 100;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
    
}
.menu-list.show {
    display: flex;
}
.menu-list li {
    width: 100%;
}
.menu-list li a {
    display: block;
    padding: 16px 28px;
    color: #222;
    text-decoration: none;
    font-size: 1.1em;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}
.menu-list li a:hover {
    background: #f2f2f2;
}
.menu-list li:last-child a {
    border-bottom: none;
}
/* ========================================
   BARRE DE RECHERCHE
   ======================================== */
#search-input {
    display: none;
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 60vw;
    max-width: 700px;
    min-width: 280px;
    padding: 12px 48px 12px 20px;
    border-radius: 24px;
    border: 1.5px solid #ccc;
    font-size: 1.15em;
    background: #fff;
    color: #222;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    outline: none;
    transition: box-shadow 0.2s, border 0.2s, background 0.2s, opacity 0.25s, transform 0.25s;
    opacity: 0;
    pointer-events: none;
}
#search-input.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
}
#search-input:focus {
    border: 1.5px solid #d3b1b1;
    background: #fff;
    box-shadow: 0 6px 32px rgba(180, 120, 120, 0.18);
}

/* ========================================
   BOUTONS
   ======================================== */
.main-btn {
    background: linear-gradient(90deg, #4CAF50 0%, #388E3C 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    margin: 8px 8px 8px 0;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(44,62,80,0.10);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    outline: none;
    letter-spacing: 0.5px;
    display: inline-block;
}
.main-btn:hover, .main-btn:focus {
    background: linear-gradient(90deg, #388E3C 0%, #4CAF50 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 16px rgba(44,62,80,0.16);
}

/* ========================================
   BOUTON STYLE VERRE (LIQUID GLASS EFFECT)
   ======================================== */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.29);
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.7px);
    -webkit-backdrop-filter: blur(6.7px);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-glass:hover, .btn-glass:focus {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    color: #000;
}